home *** CD-ROM | disk | FTP | other *** search
- ; Rom tag code for the GNU regular expression library.
- ; Edwin Hoogerbeets 18/07/89
- ;
- ; This file may be copied and distributed under the GNU Public
- ; Licence. See the comment at the top of regex.c for details.
- ;
- ; Adapted from Elib by Jim Mackraz, mklib by Edwin Hoogerbeets, and the
- ; GNU regular expression package by the Free Software Foundation.
-
- include 'exec/types.i'
- include 'exec/resident.i'
- include 'exec/nodes.i'
- include 'exec/libraries.i'
-
- MYVERSION equ 1
- MYPRI equ 0
-
- cseg ; romtag must be in first hunk
-
- public _myname
- public _myid
- public _myInitTab
-
- ds 0
- public _myRomTag
- _myRomTag:
- dc.w RTC_MATCHWORD
- dc.l _myRomTag
- dc.l endtag
- dc.b RTF_AUTOINIT
- dc.b MYVERSION
- dc.b NT_LIBRARY
- dc.b MYPRI
- dc.l _myname
- dc.l _myid
- dc.l _myInitTab
- endtag:
-
- end
-